home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 21 / Mac Magazin and MacEasy Magazine CD - Issue 21.iso / Wissenschaft & Technik / yorick12vr1-nofpu folder / include / custom.i < prev    next >
Text File  |  1995-07-26  |  1KB  |  33 lines

  1. /*
  2.     CUSTOM.I
  3.     Default version of user customization file --
  4.     read after std.i and all package initalization files.
  5.  
  6.     $Id: custom.i,v 1.1 1993/08/27 18:50:06 munro Exp $
  7.  */
  8. /*    Copyright (c) 1994.  The Regents of the University of California.
  9.                     All rights reserved.  */
  10.  
  11. /* Place your own customizations here.
  12.  
  13.    Be careful!  You can break Yorick in a personalized way, so that only
  14.    you will be affected -- this makes it difficult to get anyone else to
  15.    believe there is a problem!
  16.  
  17.    Examples:
  18.  
  19.    // I always need the distribution Bessel functions.
  20.    #include "bessel.i"
  21.  
  22.    // Read in my_special_functions.i (in ~/Yorick), which I always need.
  23.    #include "my_special_functions.i"
  24.  
  25.    // Use ugly boxed graphics and waste screen real estate by default.
  26.    pldefault, style="boxed.gs", dpi=100;
  27.  
  28.  */
  29.  
  30. /* This should be the final line in your custom.i file-- it implements
  31.    the default command line processing (see help for process_argv).  */
  32. command_line= process_argv();
  33.